home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d12
/
snip9_91.arc
/
FCOPY.C
< prev
next >
Wrap
C/C++ Source or Header
|
1991-09-17
|
1KB
|
56 lines
/*
* FCOPY.C - copy one file to another. Returns the (positive)
* number of bytes copied, or -1 if an error occurred.
* by: Bob Jarvis
*/
#include <stdio.h>
#include <stdlib.h>
#define BUFFER_SIZE 1024
long fcopy(char *dest, char *source)
{
FILE *d, *s;
char *buffer;
size_t incount;
long totcount = 0L;
s = fopen(source, "rb");
if(s == NULL)
return -1L;
d = fopen(dest, "wb");
if(d == NULL)
{
fclose(s);
return -1L;
}
buffer = malloc(BUFFER_SIZE);
if(buffer == NULL)
{
fclose(s);
fclose(d);
return -1L;
}
incount = fread(buffer, sizeof(char), BUFFER_SIZE, s);
while(!feof(s))
{
totcount += (long)incount;
fwrite(buffer, sizeof(char), incount, d);
incount = fread(buffer, sizeof(char), BUFFER_SIZE, s);
}
totcount += (long)incount;
fwrite(buffer, sizeof(char), incount, d);
free(buffer);
fclose(s);
fclose(d);
return totcount;
}